關於列表功用的介紹
參考資訊:
網站: https://automatetheboringstuff.com/chapter4/
影片: https://www.youtube.com/watch?v=48WXHT0dfEY
說明:
Lists 列表
- name [0號, 1號, 2號] 就像Arduino的矩陣
- 注意: 第一位以0這數字來表示
例如對Shell輸入:
>>> spam = ['cat', 'bat', 'rat', 'elephant']
>>> spam
['cat', 'bat', 'rat', 'elephant']
- 更多功能在下方圖片介紹